MidiOutNoteOffEx
Result = MidiOutNoteOffEx(Index, Channel, Note, Velocity)
 
Parameters:

    Index = MidiOut index
    Channel = Midi Channel
    Note = Midi Note
    Velocity = Midi Velocity
Returns:

    Success = 1 means successfully sent, 0 means an error occured
 

MidiOutNoteOffEx works exactly like MidiOutNoteOff but additionally sends a MidiNoteOn message with a velocity value of 0. Some older Midi modules and synthesizer require this. The function returns 1 if the message was successfully send, or else 0 if an error occured. In the event of an error, the error code can be retrieved with GetLastMidiOutError().


 
Related Info: GetLastMidiOutError | MidiOutNoteOff | MidiOutNoteOn :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com